home *** CD-ROM | disk | FTP | other *** search
/ Workbench Add-On / Workbench Add-On - Volume 1.iso / BBS-Archive / Comm / AmiTCP30b2.lha / src / appl / GNUEmacs / Smakefile
Makefile  |  1993-11-12  |  1KB  |  49 lines

  1. # Smakefile for EmacsTCP - install
  2. #
  3. # Copyright © 1993 AmiTCP/IP Group, <AmiTCP-group@hut.fi>
  4. #                  Helsinki University of Technology, Finland.
  5. #
  6. # Created      : Sat Mar 20 02:44:57 1993 ppessi
  7. # Last modified: Fri Nov 12 09:00:21 1993 jraja
  8. #
  9. # $Id: Smakefile,v 1.2 1993/11/12 07:01:06 jraja Exp $
  10. #
  11. # $Log: Smakefile,v $
  12. # Revision 1.2  1993/11/12  07:01:06  jraja
  13. # Added forms.el(c) and background.el(c).
  14. #
  15. #
  16.  
  17. MAKE = smake
  18.  
  19. RM= delete
  20. RM_RECURSIVE= delete all
  21. MKDIR= makedir
  22. INSTALL= copy dates all
  23.  
  24. ETC= etc/tcp_AmiTCP
  25. LISP= src/tcp.el lisp/tcp.elc src/gopher.el lisp/gopher.elc \
  26.      src/forms.el lisp/forms.elc src/background.el lisp/background.elc
  27.  
  28. FILES= add_to_.emacs $(ETC) $(LISP)
  29.  
  30. all:
  31.  
  32. DESTDIRS= $(DEST)appl $(DEST)appl/EmacsTCP $(DEST)appl/EmacsTCP/etc \
  33.     $(DEST)appl/EmacsTCP/lisp
  34. $(DEST)appl:
  35.     $(MKDIR) $@
  36. $(DEST)appl/EmacsTCP:
  37.     -$(MKDIR) $@
  38. $(DEST)appl/EmacsTCP/etc: $(DEST)appl/EmacsTCP
  39.     -$(MKDIR) $@ 
  40. $(DEST)appl/EmacsTCP/lisp: $(DEST)appl/EmacsTCP
  41.     -$(MKDIR) $@
  42.  
  43. install: $(DESTDIRS) $(FILES)
  44.     $(INSTALL) add_to_.emacs $(DEST)appl/EmacsTCP
  45.     $(INSTALL) $(ETC) $(DEST)appl/EmacsTCP/etc
  46.     $(INSTALL) $(LISP) $(DEST)appl/EmacsTCP/lisp
  47.  
  48.